home *** CD-ROM | disk | FTP | other *** search
/ Postcard CD: Niagara Parks / Postcard CD: Niagara Parks (2004).iso / mac / SS.dxr / Internal_29.ls < prev    next >
Encoding:
Text File  |  2001-12-19  |  990 b   |  30 lines

  1. global playMode, language
  2.  
  3. on exitFrame me
  4.   if language = 1 then
  5.     set the castLibNum of sprite 17 to castLib("english").number
  6.     set the castLibNum of sprite 18 to castLib("english").number
  7.   else
  8.     if language = 2 then
  9.       set the castLibNum of sprite 17 to castLib("french").number
  10.       set the castLibNum of sprite 18 to castLib("french").number
  11.     else
  12.       if language = 3 then
  13.         set the castLibNum of sprite 17 to castLib("german").number
  14.         set the castLibNum of sprite 18 to castLib("german").number
  15.       else
  16.         if language = 4 then
  17.           set the castLibNum of sprite 17 to castLib("japanese").number
  18.           set the castLibNum of sprite 18 to castLib("japanese").number
  19.         else
  20.           if language = 5 then
  21.             set the castLibNum of sprite 17 to castLib("spanish").number
  22.             set the castLibNum of sprite 18 to castLib("spanish").number
  23.           end if
  24.         end if
  25.       end if
  26.     end if
  27.   end if
  28.   playMode = 1
  29. end
  30.